/* Importing Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Main Section */
.main-header {
  text-align: center;
  background-color: #ddbeaa;
  padding: 20px;
}

.main-header h1 {
  margin: 10px 0;
  font-size: 2rem;
}
.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}

/* Filter Section */
.filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.filters select, .filters input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.filters input[type="search"] {
  width: 250px;
}

/* Art Grid */
.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 50px;
  margin-right: 150px;
  margin-left: 150px;

}

.art-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.art-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.art-card-content {
  padding: 15px;
  text-align: center;
}

.art-card h3 {
  font-size: 1.1rem;
  margin: 10px 0;
}

.art-card button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 13px;
  cursor: pointer;
  font-size: 1.1rem;
}

.art-card button:hover {
  background-color: #444;
}

/* Pagination */
.pagination {
  text-align: center;
  margin: 20px 0;
}

.pagination button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
}

.pagination button:hover {
  background-color: #444;
}

.pagination button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}



/* Wishlist Button styled like a dropdown */
.wishlist-button {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  flex-shrink: 0;  /* Prevent the button from shrinking when resizing */
}

.wishlist-button:hover {
  background-color: #f0f0f0;
}

.wishlist-button:focus {
  outline: none;
  border-color: #000;
}

/* Ensuring the button aligns well with the filters */
.filters select, .filters input, .wishlist-button {
  margin-right: 10px; /* Add spacing between elements */
}

